home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / bench / x.txt / 000174_fdc@watsun.cc.columbia.edu_Wed Nov 28 16:59:11 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  47 lines

  1. Article: 12998 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Counting the files sent and received
  6. Date: 28 Nov 2001 21:58:57 GMT
  7. Organization: Columbia University
  8. Lines: 30
  9. Message-ID: <9u3mn1$g71$1@newsmaster.cc.columbia.edu>
  10. References: <669ac511.0111281348.1ae59f62@posting.google.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1006984737 16609 128.59.39.2 (28 Nov 2001 21:58:57 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 28 Nov 2001 21:58:57 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12998
  16.  
  17. In article <669ac511.0111281348.1ae59f62@posting.google.com>,
  18. paul wells <deja@alienbigcats.com> wrote:
  19. : Is there any [straight-forward and simple] way to count the number of
  20. : files transmitted using SEND and RECEIVE?
  21. : It's not a real problem as a call to Kermit is only part of the
  22. : application I'm writing, and the file validation etc will be handled
  23. : elsewhere.  But you know how it is when you think of something, then
  24. : spend far too much time trying to do it.
  25. In C-Kermit or K95 of recent vintage, after each file-transfer operation
  26. (SEND, GET, RECEIVE, etc) the variable \v(filenumber) shows the number
  27. of files that were transferred, whether each transfer succeeded or not.
  28. There are currently no variables that break down the number of files
  29. successfully transferred, rejected, skipped, interrupted, or that had
  30. fatal errors.
  31.  
  32. Meanwhile, in case you're interested in other approaches to the same
  33. problem, you might want to look at:
  34.  
  35.   http://www.columbia.edu/kermit/case10.html
  36.  
  37. and:
  38.  
  39.   http://www.columbia.edu/kermit/ftpscripts.html
  40.  
  41. both of which deal with "atomic file movement", validation of successful
  42. transfer, and the like.
  43.  
  44. - Frank
  45.